home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 6281 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.1 KB  |  48 lines

  1. Path: news.gatecom.com!gatecoms!cgolchert
  2. From: cgolchert@gatecoms.gatecom.com (Chris Golchert)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Help linking
  5. Date: 26 Mar 1996 13:51:32 GMT
  6. Organization: Gateway Communications Inc.
  7. Message-ID: <4j8sp4$r3@www.gatecom.com>
  8. NNTP-Posting-Host: gatecoms.gatecom.com
  9. X-Newsreader: TIN [version 1.2 PL2]
  10.  
  11. hey my original got bumped off
  12.  
  13. I need to find out what version of SAS/C will understand this "smakefile"...
  14.  
  15. #
  16. # Makefile for SAS/C LightWave plugins
  17. #
  18.  
  19.  
  20. # Plugins must be made with no stack checking to prevent the attempt to
  21. # exit.  Since there are multiple entry points, there is no clear exit
  22. # option.
  23. #
  24. UINC    = //include/
  25. ULIB    = //lib/
  26. CFLAGS    = cpu=68020 math=68881 opt nostkchk idir=$(UINC)
  27.  
  28.  
  29. # Output *.p modules are made directly from C source files to keep this
  30. # example simple.
  31. #
  32. .c.p:
  33.     sc link $(CFLAGS) startup=$(ULIB)serv_s.o $*.c $(ULIB)server.lib pname=$@
  34.  
  35. all : blotch.p
  36.  
  37.  
  38. I have LC not SC
  39.        BLINK no SLINK
  40.      
  41. and I have to compile the file by hand and LMK doesn't understand "=" 
  42. when it hits pname= in the above
  43.  
  44. HELP
  45.  
  46. Chris
  47.  
  48.